home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Events / Event Classes / Application Events / SuspendEvent.h < prev    next >
Text File  |  1997-06-28  |  272b  |  21 lines

  1. // SuspendEvent.h
  2.  
  3. #ifndef SuspendEvent_h
  4. #define SuspendEvent_h
  5.  
  6. #ifndef Event_h
  7. #include "Event.h"
  8. #endif
  9.  
  10. class SuspendEvent: public Event
  11.   {
  12.     public:
  13.         SuspendEvent( const EventRecord& event )
  14.             : Event( event )
  15.             {}
  16.         
  17.         virtual void Respond() const;
  18.   };
  19.  
  20. #endif
  21.